home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / TK-NUP.ZIP / NUP.PPE (.txt) < prev   
PCBoard Programming Language Executable  |  1996-03-29  |  2KB  |  119 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Boolean  BOOLEAN001
  20.     Integer  INTEGER001
  21.     String   STRING001
  22.     String   STRING002
  23.     String   STRING003
  24.     String   STRING004
  25.  
  26. ;------------------------------------------------------------------------------
  27.  
  28.     STRING002 = ReadLine(PPEPath() + "NUP.CFG", 1)
  29.     STRING003 = ReadLine(PPEPath() + "NUP.CFG", 2)
  30.     INTEGER001 = ReadLine(PPEPath() + "NUP.CFG", 3)
  31.     STRING004 = ReadLine(PPEPath() + "NUP.CFG", 4)
  32.     Cls
  33.     DispFile PPEPath() + "NUP.PCB", 0
  34.     AnsiPos 1, GetY()
  35.     Print "@CLREOL@" + STRING002
  36.     While (1) Do
  37.         STRING001 = ""
  38.         STRING001 = Inkey()
  39.         If ((STRING001 == "LEFT") || (STRING001 == "4")) Then
  40.             AnsiPos 1, GetY()
  41.             Print "@CLREOL@" + STRING002
  42.             BOOLEAN001 = 0
  43.         Endif
  44.         If ((STRING001 == "RIGHT") || (STRING001 == "6")) Then
  45.             AnsiPos 1, GetY()
  46.             Print "@CLREOL@" + STRING003
  47.             BOOLEAN001 = 1
  48.         Endif
  49.         If (STRING001 == Chr(13)) Break
  50.     EndWhile
  51.     If (BOOLEAN001 == 0) End
  52.     GetUser
  53.     PrintLn 
  54.     If (U_Sec < INTEGER001) Then
  55.         Print "@X0FSorru dude you do not have the aXs needed to see it :("
  56.         End
  57.     Endif
  58.     FAppend 1, PPEPath() + "NUP.LOG", 0, 0
  59.     FPutLn 1, "User: " + U_Name() + "  Date: " + String(Date()) + "  Time: " + String(Time())
  60.     FClose 1
  61.     Cls
  62.     PrintLn "@X02The NUP is: " + STRING004
  63.     Print "@PAUSE@"
  64.  
  65. ;------------------------------------------------------------------------------
  66. ;
  67. ; Usage report (before postprocessing)
  68. ;
  69. ; ■ Statements used :
  70. ;
  71. ;    2       End
  72. ;    2       Cls
  73. ;    6       Goto 
  74. ;    8       Let 
  75. ;    5       Print 
  76. ;    2       PrintLn 
  77. ;    6       If 
  78. ;    1       DispFile 
  79. ;    1       FAppend 
  80. ;    1       FClose 
  81. ;    1       FPutLn 
  82. ;    1       GetUser
  83. ;    3       AnsiPos 
  84. ;
  85. ;
  86. ; ■ Functions used :
  87. ;
  88. ;    15      +
  89. ;    6       ==
  90. ;    1       <
  91. ;    4       !
  92. ;    2       ||
  93. ;    1       Chr()
  94. ;    1       Date()
  95. ;    1       Time()
  96. ;    1       U_Name()
  97. ;    1       Inkey()
  98. ;    2       String()
  99. ;    6       PPEPath()
  100. ;    4       ReadLine()
  101. ;    3       GetY()
  102. ;
  103. ;------------------------------------------------------------------------------
  104. ;
  105. ; Analysis flags : No flag
  106. ;
  107. ;------------------------------------------------------------------------------
  108. ;
  109. ; Postprocessing report
  110. ;
  111. ;    0       For/Next
  112. ;    1       While/EndWhile
  113. ;    3       If/Then or If/Then/Else
  114. ;    0       Select Case
  115. ;
  116. ;------------------------------------------------------------------------------
  117. ;                 AEGiS Corp - Break the routines, code against the machines!
  118. ;------------------------------------------------------------------------------
  119.